home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / C / Applications / SML⁄NJ 93+ / Documentation / examples / spread / sheet.sig < prev    next >
Encoding:
Text File  |  1995-12-30  |  201 b   |  8 lines  |  [TEXT/R*ch]

  1. signature SPREADSHEET =
  2. sig
  3.     val dim : int
  4.     val set : int * int * string -> unit   (* the ints here run from 0 to dim-1 *)
  5.     val eval : unit -> unit
  6.     val get : int * int -> string * int
  7. end
  8.